home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / i / internet / software / netstsr / mbuf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-27  |  267 b   |  13 lines

  1. typedef struct _mbuf
  2. {
  3.     size_t            length;
  4.     struct _mbuf   *blk;
  5. }mbuf;
  6.  
  7. #define BUFALIGN 16        /* must be greater than sizeof(mbuf) */
  8.  
  9. char *buf_create(size_t);
  10. char *buf_alloc(char *,size_t);
  11. int   buf_free(char *,char *);
  12. /* char *buf_squeeze(char *); */
  13.